Skip to content

Instantly share code, notes, and snippets.

@Adammatthiesen
Adammatthiesen / Effectify-http.ts
Last active February 10, 2026 04:59
webHandler to Effect Http Handler
import { HttpServerRequest } from "@effect/platform";
import * as HttpServerResponse from "@effect/platform/HttpServerResponse";
import { Readable } from "node:stream";
import type { ReadableStream as WebReadableStream } from "node:stream/web";
import { Effect } from "effect";
/**
* Converts an HttpServerRequest to a standard Web Request.
*/
export const ServerRequestToRequest = Effect.fn(function* (
@jagrosh
jagrosh / Github Webhook Tutorial.md
Last active February 10, 2026 04:57
Simple Github -> Discord webhook

Step 1 - Make a Discord Webhook

  1. Find the Discord channel in which you would like to send commits and other updates

  2. In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe! WebhookDiscord

Step 2 - Set up the webhook on Github

  1. Navigate to your repository on Github, and open the Settings Settings
@OmerFarukOruc
OmerFarukOruc / claude.md
Last active February 10, 2026 04:54
AI Agent Workflow Orchestration Guidelines

AI Coding Agent Guidelines (claude.md)

These rules define how an AI coding agent should plan, execute, verify, communicate, and recover when working in a real codebase. Optimize for correctness, minimalism, and developer experience.


Operating Principles (Non-Negotiable)

  • Correctness over cleverness: Prefer boring, readable solutions that are easy to maintain.
  • Smallest change that works: Minimize blast radius; don't refactor adjacent code unless it meaningfully reduces risk or complexity.
@hand-dot
hand-dot / neta-trend-daily-SKILL.md
Created January 29, 2026 04:59
claude-code-skills
name description
neta-trend-daily
トレンドネタ収集

トレンドネタ収集

はてなブックマークIT人気エントリーとHacker Newsの人気記事を収集し、ideas/daily/YYYYMMDD-trend.md に保存する。

実行手順

@ih2502mk
ih2502mk / list.md
Last active February 10, 2026 04:53
Quantopian Lectures Saved
@DMontgomery40
DMontgomery40 / CODEX.md
Last active February 10, 2026 05:05
Ralph audit loop: Codex CLI read-only code audit runner

Ralph Audit Agent Instructions (OpenAI Codex)


Safety Notice (Customize)

If this codebase is production, handles money, or touches sensitive data: treat this audit loop as a high-risk operation. Run with least privilege, avoid exporting long-lived credentials in your shell, and keep the agent in read-only mode.


@bbrandt
bbrandt / RespawnerSqlServerExtensions.cs
Last active February 10, 2026 04:46
.NET 10 Extension Members to Retain SQL Server-specific Respawner Methods Removed in v7
using Microsoft.Data.SqlClient;
using Respawn;
public static class RespawnerSqlServerExtensions
{
extension(Respawner respawner)
{
/// <summary>
/// Reset SQL Server database to the state captured by the respawner
/// </summary>
@pyros-projects
pyros-projects / 01_planning_summary.md
Last active February 10, 2026 04:42
Alternative Meta prompts for use with Coding Agents á la Cline etc

Technical Project Planning Meta-Prompt

You are an expert software architect and technical project planner. Your task is to create a comprehensive technical implementation plan for a software project based on the provided inputs.

User Input

do you know googly python-fire? Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object. I want a similar library, but instead of a CLI it generates amazing web apps for any python project!

Output Format

@pyros-projects
pyros-projects / 01_planning.md
Last active February 10, 2026 04:42
Meta Prompting

Technical Project Planning Meta-Prompt

You are an expert software architect and technical project planner. Your task is to create a comprehensive technical implementation plan for a software project based on the provided inputs.

User Input

You are an expert developer capable of building a repository analysis application. Your goal is to create a comprehensive plan for implementing a web application that retrieves a GitHub repository identifier (e.g., 127.0.0.1:5001/kohya-ss/sd-scripts) and produces an interactive report usable as context for LLMs.

The web application should accept a GitHub repository ID in the specified URL format and generate an interactive repository report. This report should provide details such as code file descriptions and allow filtering by file extension. The app should collect all relevant information from the repository that an LLM would typically need to make informed decisions. It is up to you to decide what type of information to include, while also offering users the